File: /var/www/vhosts/creativefellows.nl/slotzeist.creativefellows.nl/views/view.tour.php
<?php
/*
* Header
*/
$meta_title = $tour->metaTitle();
$meta_desc = $tour->metaDescription();
require_once __DIR__ . '/partials/header.inc.php';
/*
* Body
*/
echo '<div class="page-section page-section__masthead-image">';
echo '<div class="masthead-image-wrapper">';
echo $tour->mastHeadImage();
echo '</div>';
echo '</div>';
echo '<div class="page-section page-section__tour-form">';
echo '<div class="grid-container">';
echo '<div class="grid-x grid-padding-x align-center">';
/*
* Introduction
*/
echo '<div class="small-12 cell cell__border-bottom text-center">';
echo '<h1>'. $tour->title() .'</h1>';
echo $tour->html();
echo '</div>';
/*
* Page html
*/
echo '<div class="small-12 large-8 cell">';
echo $tour->form()->html();
echo '</div>';
echo '</div>';
echo '</div>';
echo '</div>';
/*
* Footer
*/
require_once __DIR__ . '/partials/footer.inc.php';
?>